|
|||||||||||||||||||
This license of Clover is provided to support the development of Flock only. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover. | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
ItemI.java | - | - | - | - |
|
1 |
package net.sf.flock; |
|
2 |
|
|
3 |
import java.io.Serializable; |
|
4 |
import java.net.URL; |
|
5 |
import java.util.Date; |
|
6 |
|
|
7 |
/** |
|
8 |
* @version $Revision: 1.6 $ |
|
9 |
* @author $Author: phraktle $ |
|
10 |
*/ |
|
11 |
public interface ItemI extends Serializable { |
|
12 |
|
|
13 |
public FeedI getOrigin(); |
|
14 |
|
|
15 |
public String getTitle(); |
|
16 |
|
|
17 |
public String getDescription(); |
|
18 |
|
|
19 |
public URL getLink(); |
|
20 |
|
|
21 |
public Date getCreationTime(); |
|
22 |
|
|
23 |
} |
|
24 |
|
|